home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / CHFLZ100.ZIP / LZ_CONST.PAS < prev    next >
Pascal/Delphi Source File  |  1996-09-05  |  635b  |  26 lines

  1. unit LZ_Const;
  2.  
  3. interface
  4.  
  5. { Load in the .RES file that has the same name as this .PAS file ... }
  6. {$R *.RES}
  7.  
  8. const
  9.   SChiefLZErrorBase    = 40000;
  10.  
  11. const
  12.   SNoValidFileName     = SChiefLZErrorBase + 0;
  13.   SInvalidArchive      = SChiefLZErrorBase + 1;
  14.   SInitFailed          = SChiefLZErrorBase + 2;
  15.   SInvalidParams       = SChiefLZErrorBase + 3;
  16.   SSameFileName        = SChiefLZErrorBase + 4;
  17.   SNoTempFileName      = SChiefLZErrorBase + 5;
  18.   SWrongCompressedFile = SChiefLZErrorBase + 6;
  19.   SCorruptArchive      = SChiefLZErrorBase + 7;
  20.   SBadDirectory        = SChiefLZErrorBase + 8;
  21.  
  22. implementation
  23.  
  24. end.
  25.  
  26.